home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Columbia Kermit
/
kermit.zip
/
newsgroups
/
misc.19970104-19970326
/
000135_news@columbia.edu _Wed Jan 29 14:49:38 1997.msg
< prev
next >
Wrap
Internet Message Format
|
2020-01-01
|
2KB
Return-Path: <news@columbia.edu>
Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id OAA09781
for <kermit.misc@watsun.cc.columbia.edu>; Wed, 29 Jan 1997 14:49:37 -0500 (EST)
Received: (from news@localhost)
by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id OAA01638
for kermit.misc@watsun; Wed, 29 Jan 1997 14:49:36 -0500 (EST)
Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
Newsgroups: comp.protocols.kermit.misc
Subject: Re: kermit as port monitor?
Date: 29 Jan 1997 19:49:33 GMT
Organization: Columbia University
Lines: 16
Message-ID: <5co9kd$1op$1@apakabar.cc.columbia.edu>
References: <32EF9E13.41C6@biomed.ee.ethz.ch>
NNTP-Posting-Host: watsun.cc.columbia.edu
Xref: news.columbia.edu comp.protocols.kermit.misc:6486
In article <32EF9E13.41C6@biomed.ee.ethz.ch>,
Marcus Spiegel <spiegel@biomed.ee.ethz.ch> wrote:
: How is the easiest way to configure kermit as a serial port monitor?
: I just want to see the incoming bytes in hex-code...
:
Most versions of Kermit have a command like "set debug session" or
"set terminal debug on" for this. It's not exactly hex, but it's quite
usable as a port monitor. You can also "log session" to get a literal
transcript of all the bytes that come in the port. Note, however, that
if you have told Kermit to "set parity even" (or anything else other
than "none") parity bits will be stripped -- so if you want to see them
too, "set parity none" and "set terminal bytesize 8". Syntax may vary
according to which Kermit program you are using.
- Frank